home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 15
/
CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso
/
CUCD
/
Graphics
/
Ghostscript
/
source
/
ps2epsi.bat
< prev
next >
Wrap
DOS Batch File
|
1995-09-28
|
624b
|
26 lines
@echo off
if "%1"=="" goto usage
if "%2"=="" goto usage
set infile=%1
set outfile=%2
rem Ghostscript uses %outfile% to define the output file
gs -q -dNOPAUSE -sDEVICE=bit -sOutputFile=NUL ps2epsi.ps < %infile%
rem We bracket the actual file with a few commands to help encapsulation
echo /InitDictCount countdictstack def gsave save mark newpath >> %outfile%
rem Append the original onto the preview header
copy %outfile% + %infile%
echo countdictstack InitDictCount sub { end } repeat >> %outfile%
echo cleartomark restore grestore >> %outfile%
goto end
:usage
echo "Usage: ps2epsi <infile.ps> <outfile.epi>"
:end